home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 October A / Pcwk10a98.iso / Lotus / LOTUS / SMASTERS / APPROACH / SCHEDULE.MPR / SCRIPT / ApproachDoc / Schedule Display.s (.txt) < prev    next >
Encoding:
Null Bytes Alternating  |  1997-01-09  |  1.8 KB  |  26 lines

  1. '++LotusScript Development Environment:2:5:(Options):0:66
  2.  
  3. '++LotusScript Development Environment:2:5:(Forward):0:1
  4. Declare Sub Switchto(Source As Form, View As VIEW)
  5.  
  6. '++LotusScript Development Environment:2:5:(Declarations):0:10
  7.  
  8.  
  9. '++LotusScript Development Environment:2:2:BindEvents:1:129
  10. Private Sub BindEvents(Byval Objectname_ As String)
  11.     Static Source As FORM
  12.     Set Source = Bind(Objectname_)
  13.     On Event Switchto From Source Call Switchto
  14. End Sub
  15.  
  16. '++LotusScript Development Environment:2:2:Switchto:1:12
  17. Sub Switchto(Source As Form, View As VIEW)
  18. '  Switchto event for the Schedule Display view
  19. '  Clears the date and room text in the heading left
  20. '   in the view from previous schedules
  21.     
  22.     ' Two double-quotes in a row indicate an empty string
  23.     source.body.txtMouseOverInfoDisplay.text = ""
  24.     source.body.txtMouseOverInfoDisplay2.text = ""    
  25.     
  26. End Sub        ' Switchto event for Schedule Display view